9b49498808adf21df9dd4b76e6b11915514e6e72,python/testSrc/com/jetbrains/python/PySmartEnterTest.java,PySmartEnterTest,testGoogleDocStringIndentAfterSection,#,230
Before Change
// PY-16765
public void testGoogleDocStringIndentAfterSection() {
runWithDocStringFormat(DocStringFormat.GOOGLE, new Runnable() {
public void run() {
doTest();
}
});
}
// PY-16765
After Change
// PY-16765
public void testGoogleDocStringIndentAfterSection() {
runWithDocStringFormat(DocStringFormat.GOOGLE, this::doTest);
}
// PY-16765